home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Online / AmiComSys / rexx / MessageArexx.amicomsys < prev    next >
Encoding:
Text File  |  1998-01-25  |  350 b   |  17 lines

  1. /* MessageArexx.amicomsys example
  2. ** You parse the arguments which AmiComSys send to
  3. ** this script in the following way:
  4. user=username
  5. name=realname
  6. text=the message text
  7. host=the host
  8. act= MSG, CHAT or WEB.
  9. */
  10. PARSE ARG user '\0' name '\0' host '\0' text '\0' act
  11.  
  12. Say "User:" user
  13. Say "Name:" name
  14. Say "Host:" host
  15. Say "Text:" text
  16. Say "Act:" act
  17.